-
-
Notifications
You must be signed in to change notification settings - Fork 496
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
Multiobjective Fitness: NSGA-II #215
base: master
Are you sure you want to change the base?
Conversation
…est_genome to checkpoint and Population initial_state
…tion issue to be resolved
Thanks for the pull request, and sorry it's taken me so long to get around to commenting here. Adding some kind of support for multiple objectives is a good idea, and I'll see if I can get this integrated in the near future. |
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
Hi, I've been working on an implementation of NSGA-II as a Reproduction method for NEAT, in order to allow dealing with multiple fitness values.
The readme presents all the details.
A small 2D hoverboard example was designed to benchmark the NSGA-II in comparison to the DefaultReproduction method. All the details and result comparisons are described on the hoverboard readme.
It has shown promising results, and was built with minimal (and backwards-compatible) modifications to the original library code. I hope you find it interesting.
I'll outline here the commits that modify the original lib files:
__init__.py
andsetup.py
NSGA2Fitness.__float__
.NSGA2Reproduction.sort()
right after fitness evaluation, beforebest_genome
evaluation.