We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import functools import cma fun = functools.partial(cma.ff.noisysphere, cond=1e4, noise=1, noise_offset=0.0) x, es = cma.fmin2(fun, 33 * [1], 1, { 'AdaptSigma': cma.sigma_adaptation.CMAAdaptSigmaTPA, 'ftarget': 1e-8, 'verb_disp_overwrite': 600 }, noise_handler=True # means cma.NoiseHandler ) es.plot()
works only with noise handler (or a different step-size bias).
The text was updated successfully, but these errors were encountered:
Another usecase where not only sigma-increase but also reevaluations are needed:
import cma def fun(x): return cma.ff.noisysphere(x, cond=1e4, noise_offset=0, noise=8.1) x0 = 14 * [-0.1] sigma0 = 1 xopt, es = cma.fmin2(fun, x0, sigma0, {'verb_disp_overwrite':400, 'maxfevals': 5e6, }, noise_handler=cma.NoiseHandler(len(x0), [1, 1, 100])) es.plot();
Sorry, something went wrong.
No branches or pull requests
works only with noise handler (or a different step-size bias).
The text was updated successfully, but these errors were encountered: