Look at NSGA-2 examples for deap and other NSGA-2 papers/code and check this line in elm/model_selection/evolve.py. There the length of the population should be mu and I think that select should be called with k as an argument (e.g. mu=32, k=16) but select is called with mu.
Look at NSGA-2 examples for
deap
and other NSGA-2 papers/code and check this line in elm/model_selection/evolve.py. There the length of the population should bemu
and I think that select should be called withk
as an argument (e.g.mu=32, k=16
) but select is called withmu
.