scikit-opt
scikit-opt copied to clipboard
does scikit-opt GA support elitism?
Elitism allows the GA population to always keep the top K best individuals and bring them to next generation.
This feature is important to avoid losing good solutions over the stochastic evolution process.
Write a UDF like this:https://github.com/guofei9987/scikit-opt/blob/master/examples/demo_ga_udf.py
Perhaps we will provide a udf with elitism next version.
Does the current GA version support elitism?