-
Notifications
You must be signed in to change notification settings - Fork 897
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
NelderMead reimplementation #951
base: master
Are you sure you want to change the base?
NelderMead reimplementation #951
Conversation
This is my first PR here, I am always happy about comments. The original algorithm differed from the NelderMead descriptions I found, the main changes should be:
|
@eriove Anything I should do to get the PR approved? |
@cdrnet Hi, just wanted to check if there is anything I should change in this PR? Or is there someone specific I should ask for feedback? |
I am interested in getting this PR merged! |
@BarkenBark Me too, but it seems there is no real response here. :( |
@cdrnet is there any reason why this hasn't been merged into the main code? Current version does seem prone to settling on a local minimum. |
Reimplementation of NelderMead using https://www.scilab.org/sites/default/files/neldermead.pdf as the source for the algorithm. (This matches https://se.mathworks.com/help/matlab/math/optimizing-nonlinear-functions.html#bsgpq6p-11 for the default parameters).
The existing algorithm did differ quite a lot from the original. (#950)