pymoo icon indicating copy to clipboard operation
pymoo copied to clipboard

NSGA2, NSGA3, R-NSGA3, MOEAD, Genetic Algorithms (GA), Differential Evolution (DE), CMAES, PSO

Results 63 pymoo issues
Sort by recently updated
recently updated
newest added

Hello, I am trying to add equality constraints. I do this by adding a `H` key into `out` within `_evalaute`. But whenever I try to run this, I get the...

Hi, I recently started using pymoo looking for an optimizer capable of performing parallel calculations. I followed the guide at https://pymoo.org/problems/parallelization.html but I did not notice any difference in terms...

Hi, Through a typo, I stumbled onto an issue where running PSO with a population size of 2 runs into a `ValueError: unsupported format character '-' (0x2d) at index 2`....

Hello, A couple of questions about the mutation operators: Can I customize my own mutation? If not, how can I increase the mutation rate in PM? I work on a...

Hello, While using the new version of pymoo i faced this problem. ImportError: cannot import name 'set_cv' from 'pymoo.core.evaluator' (/usr/local/lib/python3.7/dist-packages/pymoo/core/evaluator.py) Thanks

the pareto front generating methods are previously commented out also added lexicographical sort so that it can be drawn as line by pyplot for 2-objective but the visualization is a...

I'm trying to print the `RunningMetric`, as described [here](https://pymoo.org/getting_started/part_4.html#Running-Metric) in the documentation. However my code run on a remote server, with no graphical interface. So I'd like to save the...

What is the best of pre-processing tabular data with categorical columns such that it can be interpreted by pymoo and its algorithms? Based on what I can gather, the categorical...

1. Most of these algorithms works with continuous variables. But is it possible for DE (for example) to works with discrete integer variables? 2. I want to learn more about...

AutoGrad is currently not developed anymore and it is recommended to use JAX instead. It seems like a drop-in replacement and I'm curious to know if it's worth considering a...