Termination with number of iterations with no change in optimal solutions defined by a custom optimal function #529
dinohsu1019
started this conversation in
Ideas
Replies: 1 comment
-
This seems to be exactly what you have already asked in #527. Unfortunatly, I will not be able to review all your code solving an application problem because of my own time limitation. I hope implementing a custom termination criterion will resolve this issue though! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Julian,
The following is an example of my NSGA-II execution, where we can see why I need a new approach of termination. I have defined a ftol of 0.0001 with period of 10, but it takes 36 iterations (from n_gen 22 to 47) with the same optimal solution before it terminates. The optimal solution of an iteration is a custom optimal function taking the non-dominated solutions and calcuate a value with the highest (or lowest) as the optimal solution. To fix this problem, I suggest to add a termination approach with number of iterations with no change in optimal solutions defined by a custom optimal function (highest or lowest as the optimal one) Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions