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

fix: apply mutation on children #116

Merged
merged 2 commits into from
Nov 13, 2022
Merged

fix: apply mutation on children #116

merged 2 commits into from
Nov 13, 2022

Conversation

kkafar
Copy link
Collaborator

@kkafar kkafar commented Nov 13, 2022

Description

Mutation operator is now being called for every child coming from crossover operator.

Linked issues

Resolves #95

Important implementation details

I was not sure whether to apply mutation on:

  • current generation + new children
  • whole generation after replacement
  • just new children

Ultimately I went with last option: children are mutated and then replacement operator happens.

There is also consideration whether we should call mutation operator as often as mutation_rate or maybe the mutation operator should be called for every individual and mutate each gene with probability of mutation_rate. There is also option to add another parameter: mutation_probability, which would dictate probability of applying mutation operator and then mutation_rate would describe probability of modifying single gene.

In this PR I went with second option: mutation operator will be called for every individual, and mutation rate will be passed to the operator.

However in the future iterations of GA implementation, IMHO, we should go with third option ;D

@kkafar kkafar self-assigned this Nov 13, 2022
@kkafar kkafar merged commit eba19f7 into master Nov 13, 2022
@kkafar kkafar deleted the @kkafar/fix-mutation branch November 13, 2022 20:45
@kkafar kkafar linked an issue Nov 17, 2022 that may be closed by this pull request
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.

[GA] Distinguish between mutation_rate & mutation_probability [GA] Mutation is not being applied
1 participant