Replies: 1 comment
-
|
Hi, The genome selection mechanism in use picks genomes based on their fitness. It's a probabilistic selection based on each genome's fitness as a proportion of Sum(fitness) for all genomes in a species. As such the fitness scores need to be non-negative. One way around this is to simply do |
Beta Was this translation helpful? Give feedback.
0 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.
-
Hi Colin,
Is there any specific reason to prevent negative fitness value on https://github.com/colgreen/sharpneat/blob/main/src/SharpNeat/Evaluation/FitnessInfo.cs
This makes harder to defining a scoring system with punishment.
Why This Is Problematic
Disallowing negatives forces us to either:
Beta Was this translation helpful? Give feedback.
All reactions