Chimera
is a general purpose achievement scalarizing function for multi-objective optimization. It allows
the user to set a hierarchy of objectives along with relative or absolute thresholds for them to be optimized
concurrently. For more details, please refer to the following publication:
F. Häse, L.M. Roch, and A. Aspuru-Guzik. "Chimera: enabling hierarchy based multi-objective optimization for self-driving laboratories". Chemical Science 2018, 9(39), 7642-7655.
Chimera
can be installed with pip
:
pip install matter-chimera
The installation requires only python >= 3
and numpy
.
from chimera import Chimera
chimera = Chimera(tolerances=[0.5, 0.2], absolutes=[False, False], goals=['min', 'max'])
In the example above, we have 2 objectives. We want to minimize the first and maximize the second (argument goals
).
We use relative tolerances for both objectives (argument absolutes
) to define at which point the next objective
in the hierarchy should be optimized. In this example, we are saying that we allow the first objective to degrade up
to 50% in order to improve upon the second objective. And we allow the second objective to degrade up to 20% in order
to keep improving the first objective further. If we were to set tolerances=[0.5, 0.0]
, in the regions of
parameters space where the first contraint is satisfied (i.e. first objective is better than 50% of the objective
values range observed), Chimera
would scalarize the objectives in such a way that we would be optimising only the
second objective and never return to the first. Please refer to the paper for a more detailed description of the algorithm.
Note there is also the possibility to define tolerances
are percentiles rather than fractions with the percentiles
argument:
chimera = Chimera(tolerances=[0.5, 0.2], percentiles=[True, True], goals=['min', 'max'])
In this case, we are saying that we allow the first objective to degrade up to observed value of the 50% percentile
in order to improve upon the second objective. We then allow the second objective to degrade up to the 20% percentile
value in order go back to improve the first objective. As in the previous example, if once we achieve the desired
target for the first objective we want to optimise the second objective as much as possible, we can set tolerances=[0.5, 0.0]
.
Sometimes we know our objective well, and we might want to optimize to at least a specific value for this objective.
This setup can be achieved by using absolute rather than relative tolerances, by specifying absolute=[True, True]
:
chimera = Chimera(tolerances=[10, 120], absolutes=[True, True], goals=['min', 'max'])
In this case, we are saying that we would like to minimize the first objective to at least a value of 10, and maximize
the second objective to at least a value of 120. Where a value of 120 is reached for the second objective, Chimera
will scalarize the objectives in such a way that the first objective becomes again the limiting one, and we will
keep minimizing it as much as possible. To maximize the second objective without any bounds, you can set its absolute
tolerance to a very large/small value, even if it may not be reachable in practice.
Once you have an instance of Chimera
, you can use it to scalarize the objective function values obtained to reduce
them to a single merit value:
merit = chimera.scalarize(objectives)
Where objectives
is a two-dimensional array with the objective function values for all samples and objectives. Each
row should correspond to a different sample, and each column to a different objective. Note that the order of columns
should reflect the desired hierarchy of the objectives, with the first column being the most important objective and
the last column the least important one.
Chimera
is research software. If you make use of it in scientific publications, please cite the following article:
@article{chimera,
author ="Florian Häse and Loïc M. Roch and Alán Aspuru-Guzik",
title ="Chimera: enabling hierarchy based multi-objective optimization for self-driving laboratories",
journal ="Chemical Science",
year = "2018",
volume = "9",
issue = "39",
pages = "7642-7655",
publisher = "The Royal Society of Chemistry",
doi = "10.1039/C8SC02239A",
url = "http://dx.doi.org/10.1039/C8SC02239A"}
Chimera
is distributed under an MIT License.