-
Notifications
You must be signed in to change notification settings - Fork 10
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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
Suggestions for optimization algorithms to test #23
Comments
A quick note: The "simplex" I was referring to is this one - https://docs.scipy.org/doc/scipy/reference/optimize.minimize-neldermead.html#optimize-minimize-neldermead. It could be the same as the "Simplex" mentioned in Olympus. This simplex is a local optimizer, but you can make it "global" by just running it with different starting guesses (i.e., 'multi-start' optimization). |
@WardLT thanks for clarifying! Looks like Olympus also uses Nelder Mead via |
@sgbaird Not really an expert on DoE myself. People seemed to use proprietary software like MODDE and also in an iterative manner depending on how many experiments could be run in a batch etc. I'm not sure if it is possible to reproduce that workflow with open-source tools and how easy it would be to automate. |
I think Latin Hypercube Sampling might be a good option for DOE. Might try to use one of the proprietary softwares as well. A visualization that I'm interested in is grouping the algorithms into categories (as mentioned above) and making it an interactive Plotly figure with legend groups and the ability to toggle individual traces. |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
design of experiments (DOE)
(suggestion by @kjelljorner, see twitter post)
L-BGFS
(suggestion by @CompRhys, see twitter post)
derivative-free method, e.g. simplex
(suggestion by @WardLT, see twitter post)
Olympus
Supports various optimization algorithms in addition to benchmarks (suggestion by Alan Aspuru-Guzik, see twitter post, cc @rileyhickman). Includes many options from above.
Supported algorithms in Olympus
From Colab notebook
Olympus also has a nice page categorizing the algorithms into "Bayesian", "Evolutionary", "Gradient", "Grid-like", and "Other". This is right in line with a results figure I'm thinking about that using plotly legend groups (see group click toggle behavior).
The text was updated successfully, but these errors were encountered: