-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New features coming in next release #79
Labels
Comments
jmejia8
changed the title
New features comming in next release
New features coming in next release
Apr 18, 2023
New f(x) = sum(x.^2)
optimize(f, [zeros(3) ones(3)], ECA, iterations=5, seed=1, verbose=true) output
Due to #78 |
User-defined RNG (#24): f(x) = sum(x.^2)
optimize(f, [zeros(3) ones(3)], ECA, rng = Random.Xoshiro(9)) output:
optimize(f, [zeros(3) ones(3)], ECA, rng = Random.MersenneTwister(9))
|
User defined termination criteria: algo = ECA(termination = Metaheuristics.AbsoluteFunctionConvergence(ftol=1e-4) )
optimize(f, [zeros(3) ones(3)], algo) Output:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install the unstable version hosted in the
develop
branch.Optimizers with default parameters
Pass parameters and
Options
via askargs...
is similar to
Using the
SearchSpaces
module to define search spaces.Termination criteria based on convergence
Other performance improvements
Clear message errors (#65)
output:
The text was updated successfully, but these errors were encountered: