Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Love Triangle Culling #2

Open
NoraCodes opened this issue May 3, 2017 · 0 comments
Open

Implement Love Triangle Culling #2

NoraCodes opened this issue May 3, 2017 · 0 comments

Comments

@NoraCodes
Copy link
Owner

Thanks to /u/aidenr

Don't strictly sort the population for culling or else you end up with depth-first searching that is highly prone local minima. I try to model selection on natural processes, hoping for some serendipity. Here's my favorite:
Roulette select three members from the population, with chances directly proportional to their individual scores.
Roulette select one member from the three, with chances inversely proportional to their individual scores.
Cull the member selected in #2.
Breed the two members selected in #1 that were not selected in #2.
Return the new member to the population.
I call it Love Triangle Selection ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant