pygmo2
pygmo2 copied to clipboard
A Python platform to perform parallel computations of optimisation tasks (global and local) via the asynchronous generalized island model.
I recently came across this library in a technical talk. I frequently use the Dask parallel processing engine to scale my work across multiple machines. Is there any plans to...
Hi, i couldnt find any example to be able to save&load the population during evolving. For example, something like this would be really useful: # pseudo code: ``` for i...
Dear All: I have a question about fitness of pygmo, Is there we deal with the multi-problem turn to minimal as default? For example, if I have two objects, one...
Adding an UDA wrapping https://github.com/fmfn/BayesianOptimization Work in Progress
Thanks for effort on this amazing library. I am looking for a python library to perform Capacitated Facility Location problem with multi objectives. Is pygmo2 suited for that? Can I...
I am trying to install the module with the command: `pip install pygmo` in a python 3.9 environment but I get the following error message: ``` ERROR: Could not find...
Right now the use of an archipelago with, for example, a bfe based algo will not work if python multiprocessing islands are used with a multiprocessing bfe. The reason is...
Is there a way to access and store the total number of generations and the exit flag? I only came up with the following solution ``` ... algo.set_verbosity(1) ... uda...