Can anyone provide some pseudo code for a roulette selection function? How would I implement this:

I don't really understand how to read this math notation. I never took any probability or statistics.
|
Can anyone provide some pseudo code for a roulette selection function? How would I implement this:
I don't really understand how to read this math notation. I never took any probability or statistics.
| |||||
feedback
|
|
It's been a few years since i've done this myself, however the following pseudo code was found easily enough on google.
for all members of population
sum += fitness of this individual
end for
for all members of population
probability = sum of probabilities + (fitness / sum)
sum of probabilities += probability
end for
loop until new population is full
do this twice
number = Random between 0 and 1
for all members of population
if number > probability but less than next probability
then you have been selected
end for
end
create offspring
end loop
The site where this came from can be found here if you need further details. | |||||||||
feedback
|
|
Here is some code in C :
| ||||
|
feedback
|
|
The pseudocode posted contained some unclear elements, and it adds the complexity of generating offspring in stead of performing pure selection. Here is a simple python implementation of that pseudocode:
| |||
|
feedback
|
|
Lots of correct solutions already, but I think this code is clearer.
In addition, if you accumulate the fs, you can produce a more efficient solution.
This is both faster and it's extremely concise code. STL in C++ has a similar bisection algorithm available if that's the language you're using. | |||
feedback
|
|
From the above answer, I got the following, which was clearer to me than the answer itself. To give an example: Random(sum) :: Random(12) Iterating through the population, we check the following: random < sum Let us chose 7 as the random number.
Through this example, the most fit (Index 3) has the highest percentage of being chosen (33%); as the random number only has to land within 6->10, and it will be chosen.
| ||||
|
feedback
|
|
I wrote a version in C# and am really looking for confirmation that it is indeed correct: (roulette_selector is a random number which will be in the range 0.0 to 1.0)
| |||
|
feedback
|