-
Notifications
You must be signed in to change notification settings - Fork 58
replace differential evolution strategy #322
New issue
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a nice PR that completely revamps the Differential Evolution strategy to a strategy much more suited for auto-tuning.
The tests are passing - approved.
return population | ||
|
||
|
||
def differential_evolution(searchspace, cost_func, bounds, popsize, maxiter, F, CR, method, constraint_aware, verbose): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Officially Python variable names have to conform to this regex: [^[_a-z][a-z0-9_]*$.]
|
This pull request replaces the previous differential evolution strategy from scipy.optimize with our own implementation. There are several reasons for this, including: