Baysian Optimisation. Any way of increasing the sample size of candidates solutions to satisfy XConstraintFunction in bayesopt()?

7 次查看(过去 30 天)
I'm investigating the suitability of bayesopt() for problems of increasing dimensionality and range within the variables. As both of these increase, the number of solutions in the solution space grows quickly, whilst the number of feasible solutions grows less quickly. I have included a constraint function as an input to bayesopt(). The bayeopt() algorithm checks whether this can be satisfied be inputting 10,000 possible solutions (I assume drawn from the solution space) to it and seeing if any are feasible. However as mentioned before, the solution space grows a lot more quickly than the number of feasible solutions. This means that it becomes very unlikely to draw a feasible solution in 10,000 selections. If a feasible solution is not found, bayesopt() considers there to be no feasible solutions and terminates the algorithm. However, I know that there are feasible solutions so would like the algorithm to continue so I can see how it performs. Is there a way of increasing the 10,000 limit? I can see the variable that would be need to changed in the bayesopt() code, but when I try to change it I get a pop up box saying that I dont have access to alter the file.
  2 个评论
Bob Hickish
Bob Hickish 2017-10-5
编辑:Bob Hickish 2017-10-5
Furthermore, it is strange that one can provide an InitialX to bayesopt() but the ConstrainFunction checking process doesn't evaluate this. Is there anyway of passing InitialX to the constraint function during the checking process to convince bayesopt() that the constraint function is satisfiable? Thanks

请先登录,再进行评论。

采纳的回答

Don Mathis
Don Mathis 2017-10-6
Unfortunately the API doesn't allow that, but you can assign into the Options object once you have one. The bayesopt function creates one right away, so you could do something like this:
x = optimizableVariable('x',[-8,8]);
fun = @(T)sin(T.x);
BO = my_bayesopt(fun, x)
function Results = my_bayesopt(ObjectiveFcn, VariableDescriptions, varargin)
Options = bayesoptim.BayesoptOptions(ObjectiveFcn, VariableDescriptions, varargin);
Options.NumRestartCandidates = 1e6;
Results = BayesianOptimization(Options);
end
  6 个评论
Don Mathis
Don Mathis 2017-10-13
You can define your own modified version of the BayesianOptimization class and have your "my_bayesopt" function call that. Put a copy of BayesianOptimization.m into your local folder and rename it MyBayesianOptimization.m. Then, inside MyBayesianOptimization.m,
  • Rename the class on line 1:
classdef MyBayesianOptimization
  • Rename the constructor:
function this = MyBayesianOptimization(Options)
  • Make checkXConstraintFcnSatisfiability do nothing:
function checkXConstraintFcnSatisfiability(this)
end
Inside your my_bayesopt.m, make it call your new class:
function Results = my_bayesopt(ObjectiveFcn, VariableDescriptions, varargin)
Options = bayesoptim.BayesoptOptions(ObjectiveFcn, VariableDescriptions, varargin);
Options.NumRestartCandidates = 1e6;
Results = MyBayesianOptimization(Options);
end
This works for me in MATLAB version R2016b. Let me know how it goes.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Performance 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by