Problems

All evaluation functions provided by the benchmark suite are required to be minimized. If the objective value of the original underlying problem is to be maximized, the evaluation function provided has its value multiplied by \(-1\).

Note

Evaluation runtimes are measured on a Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz CPU, using random search.

Windmill Wake Simulator

bibtex:

floris2020

repository:

GitHub

problem-key:

windwake

parameters:
--file

The path to the windpark/windmill specification. We recommend using example_input.json from the FLORIS repository. (required)

-n

The number of windmills to be placed. (default: 3)

-w

The width of the area in which the windmills are to be placed. (default: 333.33 * -n)

-h

The height of the area in which the windmills are to be placed. (default: 333.33 * -n)

--wind-seed

The random seed used for generating the distribution and strength of the wind. (default: 0)

--n-samples

The number of random wind strength samples to evaluate. More is less noisy but takes more time. Passing the string None will use a fixed set of wind strengths (previous behaviour, fast, no noise) (default: 5)

dimensionality:

\(2n\), all continuous (cont)

constraints:

Windmills are not allowed to be located within a factor of two of each others’ radius, this constraint has been incorporated into the objective function. Violations will result in an objective value of \(0.0\).

description:

The layout of the windmills in a wind farm has noticeable impact on the amount of energy it produces. This benchmark problem employs the FLORIS wake simulator to analyse how much power production is lost by having windmills be located in each others wake. The objective is to maximize power production.

runtime:

At ``-n`` = 3:

_images/problems_1_0.png

At ``-n`` = 5:

_images/problems_2_0.png
fitness:

At ``-n`` = 3:

_images/problems_3_0.png

At ``-n`` = 5:

_images/problems_4_0.png

Electrostatic Precipitator*

publications:

([DRE+18])

bibtex:

(daniels2018suite)

repository:

BitBucket

problem-key:

esp

parameters:

None

dimensionality:

\(49\) - all categorical (cat)

runtime:
_images/problems_5_0.png
fitness:
_images/problems_6_0.png
description:

An Electrostatic Precipitator is a large gas filtering installation, whose efficiency and efficiacy is dependent on how well the intake gas is distributed. This installation has slots – named baffles – which can be of various types, each having a different impact on the distribution. This benchmark problem employs the OpenFOAM Computational Fluid Dynamics simulator, implemented as part of the CFD Test Problem Suite by Daniels et al. . The goal is to find a configuration that has the best resulting distribution.

PitzDaily

publications:

[DRE+18]

bibtex:

daniels2018suite

repository:

BitBucket

problem-key:

pitzdaily

parameters:

None

dimensionality:

\(10\) - all continuous (cont)

runtime:
_images/problems_7_0.png
fitness:
_images/problems_8_0.png
constraints:

Points must lie in a polygon, constraint violations will result in an objective value of \(1.0\).

description:

This is a pipe shape optimization problem, where a computational fluid dynamics simulator is used to calculate the pressure loss for a given pipe shape, which needs to be minimized. The variables denote the control points that determine the shape of the pipe.

HPO / XGBoost

problem-key:

hpo

parameters:
--folder

The folder containing the unpacked files of the Steel Plates Faults dataset. (required)

--time-limit

The time limit for a single evaluation of the objective function in seconds. A that requires more time than what time time limit allows will return an objective value of 0 (default: 8) TODO: Setting this parameter still needs to be implemented.

Important

The default time limit is based on a Intel(R) Xeon(R) Gold 6148 CPU @ 2.40GHz, adjust accordingly to hardware used.

dataset:

Dataset provided by Semeion, Research Center of Sciences of Communication, Via Sersale 117, 00128, Rome, Italy. www.semeion.it

dimensionality:

\(135\) - \(117\) categorical (cat), \(7\) integer (int), \(11\) continuous (cont), contains conditionals

runtime:
_images/problems_9_0.png
fitness:
_images/problems_10_0.png
constraints:

Time it limited to 8s (on our machine), violations result in an objective value of \(0.0\).

description:

Machine Learning approaches often have a large amount of hyperparameters of varying types. This benchmark makes use of scikit-learn to build an XGBoost classifier with per-feature preprocessing. Evaluation of a solution is performed by k-fold cross validation, with the goal to maximize accuracy.

Hospital Simulation

publications:

[BGK21]

bibtex:

hospital

repository:

Website

problem-key:

hospital

parameters:

None

dimensionality:

\(29\) - all continuous (cont)

runtime:
_images/problems_11_0.png
fitness:
_images/problems_12_0.png
constraints:

Lower and upper bounds only.

description:

This problem consists of tuning the parameters of a discrete event simulator for a hospital planning tool in the context of the COVID-19 pandemic. It is especially challenging due to the large amount of noise in the objective function.

Rosenbrock

problem-key:

rosenbrock

parameters:
--n-int

The number of dimensions that are required to be integer (expressed as \(i\) in the dimensionality below)

--n-cont

The number of dimensions that are required to be continuous (expressed as \(c\) in the dimensionality below)

--logscale

Whether to take the log of the rosenbrock function instead of scaling.

dimensionality:

\(i + c\), \(i\) integer (int), \(c\) continuous (cont)

description:

The rosenbrock function with a configurable amount of integer and continuous variables. Non-expensive problem included to test whether approaches work.