Differences between roulette wheel selection and rank based selection

我与影子孤独终老i 提交于 2019-12-10 20:57:11

问题


what are the differences between roulette wheel selection and rank based selection in genetic algorithm.

i am confused which one is best for me now. that's why just want to know the differences.


回答1:


The Rank Based Selection algorithm assigns probability(of them getting selected) to the items according to the priority they have. For example, the least priority item might get 10%, the one above that 20% and so on. In other words, the probability of an item getting selected is modified, and is determined by the algorithm.

But Roulette Wheel algorithm doesn't modify the probability of items. That is if an item has 99% probability, it will remain the same while making selection. But the problem here is, it reduces the chances of others getting selected to nil.

If you want to understand further, visit this link .




回答2:


I advise you to use different selection schemes. Change it dynamically. The primitive heuristic method is: if the the best individual has >= p% probability (p=80..100, for example) then use rank selection for a while otherwise use the default roulette selection. I think that roulette selection is better for some primary evolution steps. When the stagnation is closer then switch to rank selection.



来源:https://stackoverflow.com/questions/9462350/differences-between-roulette-wheel-selection-and-rank-based-selection

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!