Biobjective Performance Assessment with the COCO Platform
There are two ways to run the optimizer: it is possible to change the experiment parameters in the IBEA.py
file by parameterizing the call to experiment.main
.
python2 ibea.py
It is also possible to parametrize and run experiment.py
:
python2 experiment.py <budget> <current_batch> <no_of_batches>
The idea is to keep the parameters we are testing local. Freely modify the solver object initialization in experiment.py
in line 255:
SOLVER = IBEA().ibea
When you commit, please do git add -p experiment.py
and ignore the above hunk. That way you do not to write your params on git and do not risk overwriting ours.
The idea is that exdata
, the sub-directory in which results are saved, is ignored by git so that everyone can local experiments.
If you have nice results to share, you may copy the raw or preprocessed results in the toplevel shared_exdata
directory and push!
Application of crossover and mutation both have tunable probabilities. For most problem functions best results were achieved with both probabilities being close (but not necessarily equal) to 1.
The paper applies Simulated Binary Crossover-20, following paper[2].
Lower values of indices for the approximated spread
distribution produce offspring different from their parents, whereas higher ones produce offspring more similar to their parents.
In practice, n=20 produces some numerical instability, the authors of [2] recommend using n = {2, 5}.
For fixed variance, prefer a higher value, e.g sigma in [2, 5].
The idea is to adapt the step size depending on the success of previous mutations for each input space dimension.
done in 2.7e-03 seconds/evaluation
2 2.3e-03
5 2.7e-03
10 2.8e-03
20 2.7e-03
- Eckart Zitzler and Simon Künzli, “Indicator-Based Selection in Multiobjective Search”. In Parallel Problem Solving from Nature (PPSN 2004), pp. 832-842, 2004.
- Deb, Kalyanmoy, and Ram B. Agrawal. "Simulated binary crossover for continuous search space." Complex Systems 9.3 (1994): 1-15.
- [ref 14] L. Thiele, S. Chakraborty, M. Gries, and S. Künzli. Design space exploration of network processor architectures. In M. Franklin, P. Crowley, H. Hadimioglu, and P. Onufryk, editors, Network Processor Design Issues and Practices, Volume 1, chapter 4, pages 55–90. Morgan Kaufmann, October 2002.