Beginner to interpret the output of a 30-binary, 3-objective problem #514
-
Attached is a problem with 30 binary variables and 3 objectivs: A few questions about the output: Do we look at number of solutions in the Pareto Front only? Do we ignore Epsilon and indicator columns completely? (do not see any usage of it) The number of solutions in the Pareto Front increases initially and decreases later, is this normal? Is the number of solutions in the Pareto Front always more than zero? During minimize() execution, how do we know if we have good solutions from output or is it feasible to? Is it possible to continue the minimize() after it finishes? If it is with long execution time, we probably want to make sure we have got good solutions before it stops. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Yes you can look only into the Pareto front. The size will be at least one for unconstrained problems. You can use a You can not |
Beta Was this translation helpful? Give feedback.
Yes you can look only into the Pareto front. The size will be at least one for unconstrained problems.
You can use a
Callback
(https://pymoo.org/interface/callback.html) to track how many solutions are feasible.You can not
minimize
but start it again with a biased population (you can use here the result returned by your firstminimize
call)https://pymoo.org/customization/initialization.html