anyoptimization / pymoo

NSGA2, NSGA3, R-NSGA3, MOEAD, Genetic Algorithms (GA), Differential Evolution (DE), CMAES, PSO
https://pymoo.org
Apache License 2.0
2.23k stars 381 forks source link

Custom Initialization of Population for NSGA-II #642

Open itsaugat opened 2 weeks ago

itsaugat commented 2 weeks ago

I want to initialize the population for NSGA-II with my own data. Is it possible to do so using the library?

Thanks.

blankjul commented 1 week ago

Yes its possible. Checkout this tutorial: https://pymoo.org/customization/initialization.html

itsaugat commented 1 week ago

Thank you!!