HOME

TheInfoList



OR:

Stochastic universal sampling (SUS) is a technique used in
genetic algorithm In computer science and operations research, a genetic algorithm (GA) is a metaheuristic inspired by the process of natural selection that belongs to the larger class of evolutionary algorithms (EA). Genetic algorithms are commonly used to gene ...
s for selecting potentially useful solutions for recombination. It was introduced by James Baker. SUS is a development of
fitness proportionate selection Fitness proportionate selection, also known as roulette wheel selection, is a genetic operator used in genetic algorithms for selecting potentially useful solutions for recombination. In fitness proportionate selection, as in all selection method ...
(FPS) which exhibits no bias and minimal spread. Where FPS chooses several solutions from the population by repeated random sampling, SUS uses a single random value to sample all of the solutions by choosing them at evenly spaced intervals. This gives weaker members of the population (according to their fitness) a chance to be chosen. FPS can have bad performance when a member of the population has a really large fitness in comparison with other members. Using a comb-like ruler, SUS starts from a small random number, and chooses the next candidates from the rest of population remaining, not allowing the fittest members to saturate the candidate space. Described as an algorithm, pseudocode for SUS looks like: SUS(''Population'', ''N'') ''F'' := total fitness of ''Population'' ''N'' := number of offspring to keep ''P'' := distance between the pointers (''F''/''N'') ''Start'' := random number between 0 and ''P'' ''Pointers'' := ''i'' in ..(''N''-1) return RWS(''Population'',''Pointers'') RWS(''Population'', ''Points'') ''Keep'' = [ for ''P'' in ''Points'' ''I'' := 0 while fitness sum of ''Population''[0..''I''] < ''P'' ''I''++ add ''Population''[''I''] to ''Keep'' return ''Keep'' Where ''Population''[''0''..''I''] is the set of individuals with array-index 0 to (and including) . Here RWS() describes the bulk of fitness proportionate selection (also known as "
roulette wheel selection Fitness proportionate selection, also known as roulette wheel selection, is a genetic operator used in genetic algorithms for selecting potentially useful solutions for recombination. In fitness proportionate selection, as in all selection method ...
") – in true fitness proportional selection the parameter is always a (sorted) list of random numbers from 0 to {{mono, ''F''. The algorithm above is intended to be illustrative rather than canonical.


See also

*
Fitness proportionate selection Fitness proportionate selection, also known as roulette wheel selection, is a genetic operator used in genetic algorithms for selecting potentially useful solutions for recombination. In fitness proportionate selection, as in all selection method ...
*
Reward-based selection Reward-based selection is a technique used in evolutionary algorithms for selecting potentially useful solutions for recombination. The probability of being selected for an individual is proportional to the cumulative reward, obtained by the indiv ...


References

Genetic algorithms