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. carps can launch experiment runs in parallel by using hydra, which offers launchers for slurm/submitit, Ray, RQ, and joblib.
The main topics of this README are:
For more details on CARP-S, please have a look at the documentation.
To install CARP-S, you can simply use pip
:
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:
pip install carps[smac,bbob]
All possible install options for benchmarks are:
dummy,bhob,hpob,mfpbench,pymoo,yahpo
All possible install options for optimizers are:
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:
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:
pip install ".[smac,bbob]"
If you want to install CARP-S for development, you can use the following command:
make install-dev
For HPOBench, it is necessary to install the requirements via:
bash container_recipes/benchmarks/HPOBench/install_HPOBench.sh
For some benchmarks, it is necessary to download data, such as surrogate models, in order to run the benchmark:
-
For HPOB, you can download the surrogate benchmarks with
bash container_recipes/benchmarks/HPOB/download_data.sh
-
For MFPBench, you can download the surrogate benchmarks with
bash container_recipes/benchmarks/MFPBench/download_data.sh
-
For YAHPO, you can download the required surrogate benchmarks and meta-data with
bash container_recipes/benchmarks/YAHPO/prepare_yahpo.sh
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:
# 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)).
You can run a certain problem and optimizer combination directly with Hydra via:
python -m carps.run +problem=... +optimizer=... seed=... -m
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:
python -m carps.utils.check_missing <rundir>
To collect all run data generated by the file logger into csv files, use the following command:
python -m carps.analysis.gather_data <rundir>
The csv files are then located in <rundir>
. 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:
python -m carps.utils.database.reset_experiments
Another option is to fill the database with all possible combinations of problems and optimizers you would like to run:
python -m carps.container.create_cluster_configs +problem=... +optimizer=... -m
Then, run them from the database with:
python -m carps.run_from_db
For instructions on how to add a new optimizer or benchmark, please refer to the contributing guidelines for benchmarks and optimizers.
In the case when you are developing your optimizer or benchmark in a standalone package, you can use carps without directly working in the carps repo. For a custom benchmark we have an example repo. It shows how to use your own benchmark with carps optimizers. For a custom optimizer check this example repo. Information is also available here.
For each scenario (blackbox, multi-fidelity, multi-objective and multi-fidelity-multi-objective) and set (dev and test), we run selected optimizers and provide the data.
Here we provide the link to the meta data
that contains the detailed optimization setting for each run
and the running results that
records the running results of each optimization-benchmark combination.