-
My implementation looks like this:
I was not able to find a statement in the documentation, on how the mutation effects discrete genes. Are the genes mutated and then rounded to the next discrete value or is there any other mechanism? Is it furthermore possible, to define an individual mutation range for each gene similar to the gene_space attribute? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
When Defining a mutation space is a good feature to be supported. Thanks for your suggestion. |
Beta Was this translation helpful? Give feedback.
-
Update: Custom mutation range feature is implemented. It will be supported in the next release. 31a3975 |
Beta Was this translation helpful? Give feedback.
When
gene_space
is used, then mutation happens by replacing the gene value by a value randomly selected from the gene space. This happens for bothint
andfloat
data types.Defining a mutation space is a good feature to be supported. Thanks for your suggestion.