8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
because the last logger.add() is called (and uses es.stop(check=False)) before es.stop() breaks the loop and not (again) after the loop is exited.
logger.add()
es.stop(check=False)
es.stop()
while not es.stop(): X = es.ask() # sample len(X) candidate solutions es.tell(X, [fun(x) for x in X]) es.logger.add() # for later plotting cma.plot()
Adding a line es.logger.add() right before cma.plot() fixes the issue.
es.logger.add()
cma.plot()
The call in fmin looks like
fmin
logger.add(modulo=1 if es.stop() and logger.modulo else None)
hence catches the terminating condition.
What could be an issue if we drop check=False in logger.add?
check=False
logger.add
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
because the last
logger.add()
is called (and useses.stop(check=False)
) beforees.stop()
breaks the loop and not (again) after the loop is exited.Adding a line
es.logger.add()
right beforecma.plot()
fixes the issue.The call in
fmin
looks likehence catches the terminating condition.
What could be an issue if we drop
check=False
inlogger.add
?The text was updated successfully, but these errors were encountered: