Replies: 2 comments 3 replies
-
This fails by design because |
Beta Was this translation helpful? Give feedback.
1 reply
-
Checkout
Depending on the type the corresponding default operator is used. Feel free to provide your own operator ensemble to further customize. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have written a code for multi objective optimization using pymoo. I have two cost function of six variables which the first variable is integer, and the others are float. So, I used MixedVariableGA for minimization. I used seed=1 to have a constant initial population and evaluate the effects of mutation on the results. However, the results are constant in every run, no matter how the mutation parameters changes. This is a part of code I developed:
`
`
The results are constant when I change prob and eta for PolynomialMutation. In addition, using eliminate_duplicates=True leads to following error in my code:
TypeError: float() argument must be a string or a real number, not 'dict'
Beta Was this translation helpful? Give feedback.
All reactions