About the population size after iterations in NSGA-II #291
-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
In NSGA-II, the population size is always kept the same. You probably refer to the result object, which filters the non-dominated solutions from the population. Let us say |
Beta Was this translation helpful? Give feedback.
In NSGA-II, the population size is always kept the same. You probably refer to the result object, which filters the non-dominated solutions from the population. Let us say
pop_size=100
thenlen(res.pop)==100
butlen(res.opt)<=100
will hold.If you run the algorithm long enough: finally, almost all solutions will be non-dominated in the current population and it will become the same.