module documentation

DEPRECATED: use rather example_experiment_simple.py

A short and simple example experiment with restarts.

The code is fully functional but mainly emphasises on readability. Hence produces only rudimentary progress messages and does not provide batch distribution or timing prints, as example_experiment2.py does.

To apply the code to a different solver, fmin must be re-assigned or re-defined accordingly. For example, using cma.fmin instead of scipy.optimize.fmin can be done like:

import cma
def fmin(fun, x0, **kwargs):
    return cma.fmin2(fun, x0, 2, {'verbose': -9} if not kwargs.get('disp')
                                 else None)[0]
Variable budget_multiplier Undocumented
Variable minimal_print Undocumented
Variable observer Undocumented
Variable output_folder Undocumented
Variable suite Undocumented
Variable suite_name Undocumented
Variable x0 Undocumented
Variable xopt Undocumented
budget_multiplier: float =

Undocumented

minimal_print =

Undocumented

observer =

Undocumented

output_folder: str =

Undocumented

suite =

Undocumented

suite_name: str =

Undocumented

x0 =

Undocumented

xopt =

Undocumented