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

How to set the elitism preservation strategy in NSGA-I #658

Open
hjh-2001 opened this issue Nov 11, 2024 · 1 comment
Open

How to set the elitism preservation strategy in NSGA-I #658

hjh-2001 opened this issue Nov 11, 2024 · 1 comment
Assignees

Comments

@hjh-2001
Copy link

How to directly preserve 10% of the elite individuals in the population to the next generation? Then, 80% of the individuals are obtained through crossover, and 20% of the worst individuals are mutated, that is, reinitialized.

@blankjul blankjul self-assigned this Nov 24, 2024
@blankjul
Copy link
Collaborator

Basically this comes back to writing your own algorithm. pymoo is very modular and it seems like you only want to write your own survival operator.

A good example for you might be to look at RVEA
https://raw.githubusercontent.com/anyoptimization/pymoo/refs/heads/main/pymoo/algorithms/moo/rvea.py
where I have implemented also a survival.

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

2 participants