-
Notifications
You must be signed in to change notification settings - Fork 36
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
How to get candidate solutions from each iteration? #72
Comments
Thanks for your interest. Currently this libaray does not return the solution from each iteration by default. We only return the solution value for saving memory. For large-scale black-box optimization, typically returning the solutions from each iteration is memory-expensive (). However, it is possible to do this via slightly modifying the code. In fact, you only need to add a variable to record it (I think this is a very simple coding task since all the optimizer class are OOP). |
If you still have questions, you can write a simple demo. And I can help to add them. Thanks for your interest again. |
I find myself in the same situation. My fitness function is costly and its computation needs to be distributed. The ask/tell interface of pycma makes it easy to do so, but I cannot see an easy way to achieve the same with pypop. Overriding method |
Thanks for the excellent work π₯³
The text was updated successfully, but these errors were encountered: