You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typo: "Commonly used are the movement in the design space f_tol..." => should be x_tol or xtol because f is for objectives.
Similar concepts should be clarified: n_gen and n_max_gen, period and n_last
underline or not: x_tol or xtol, f_tol or f_tol, naming should be consistent
How to change the default? e. g.,
termination = DefaultMultiObjectiveTermination(
xtol=1e-8,
cvtol=1e-6,
ftol=0.0025,
period=30,
n_max_gen=1000,
n_max_evals=100000
)
What if I want to remove ftol and period completely and use n_max_gen, n_max_evals with other customization only?
Please help improve this page so that new users can pick up quickly, thanks in advance.
The text was updated successfully, but these errors were encountered:
Termination Criteria page:
https://pymoo.org/interface/termination.html?highlight=ftol
A few confusions:
termination = DefaultMultiObjectiveTermination(
xtol=1e-8,
cvtol=1e-6,
ftol=0.0025,
period=30,
n_max_gen=1000,
n_max_evals=100000
)
What if I want to remove ftol and period completely and use n_max_gen, n_max_evals with other customization only?
Please help improve this page so that new users can pick up quickly, thanks in advance.
The text was updated successfully, but these errors were encountered: