-
Notifications
You must be signed in to change notification settings - Fork 56
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
ERROR: No set_candidates! method defined for BlackBoxOptim.GeneratingSetSearcher #211
Comments
@hiiroo In the Borg MOEA, it runs successfully with a single initial solution. But when setting multiple initial solutions, I encounter a problem similar to yours: Successres_his_borg = bboptimize(maximin_operator, initial_pop_sim[1]; Method = :borg_moea, FitnessScheme = ParetoFitnessScheme{3}(is_minimizing = false),
SearchRange = vcat(repeat([(400.0, 24000.0)], 20), repeat([(0.01, 1.0)], 25), repeat([(-1.0, 1.0)], 25), repeat([(0.0, 1.0)], 2)), NumDimensions = 72,
MaxTime = 60, # MaxFuncEvals = 20000, MaxSteps = 50000, PopulationSize = 100,
ϵ = [4, 30, 0.5], TraceInterval = 1.0, TraceMode = :compact); Failres_his_borg = bboptimize(maximin_operator, initial_pop_sim; Method = :borg_moea, FitnessScheme = ParetoFitnessScheme{3}(is_minimizing = false),
SearchRange = vcat(repeat([(400.0, 24000.0)], 20), repeat([(0.01, 1.0)], 25), repeat([(-1.0, 1.0)], 25), repeat([(0.0, 1.0)], 2)), NumDimensions = 72,
MaxTime = 60, # MaxFuncEvals = 20000, MaxSteps = 50000, PopulationSize = 100,
ϵ = [4, 30, 0.5], TraceInterval = 1.0, TraceMode = :compact); with
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello everyone and thanks for the great library! I have a problem with starting an optimization for
probabilistic_descent
with initial candidates: code sample and the stack trace given below. I am using Julia 1.9 rc right now. I can give you more details if you need them.vInitial
is a vector of length 24.and, the stack trace;
The text was updated successfully, but these errors were encountered: