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

fine grained tournament selection #687

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

vladofilipovic
Copy link

The ratio between exploration and exploitation governs the search process.
Level of exploration(looking for new solutions) and exploitation (using previously acquired knowledge) is determined by the tournament size.
Very often, the search process converges too slow with smaller tournament size and too fast with bigger tournament size.
Fine Grained Tournament Selection (denoted as FGTS) preserves good features of the tournament selection and
(at the same time) allows that setting of the ratio between exploration and exploitation becomes more precise.
FGTS is controlled by real value parameter fgtournsize (the desired average tournament size) instead of
the integer parameter.
Similarly to the tournament selection, an individual is chosen if it is the best individual on the tournament.
However, unlike tournament selection, size of the tournament is not unique in the whole population, i.e., tournaments
with different number of competitors can be held within one step of the selection. (see [Filipovic2003fgts]_)
.. [Filipovic2003fgts] Filipovic, 2003, Fine-grained Tournament Selection Operator in Genetic Algorithms.
Available from: https://www.cai.sk/ojs/index.php/cai/article/view/452

@fmder
Copy link
Member

fmder commented Feb 7, 2023

Thanks for the contribution. Could you please add a couple of unit tests to the new 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

Successfully merging this pull request may close these issues.

2 participants