Open xseryda opened 4 years ago
No, we don't have any plans to implement it, i am afraid. Of late, there is very limited active development going on in GPyOpt, certainly no new features.
fwiw, we have a new lib Emukit, which has been our main focus for the past year and a half. It has some support for multi-output GPs, but no multi-objective capabilities at the moment. It is entirely possible it might be implemented in Emukit, although I won't be able to give any timeframe at this time.
You might try collapsing the two objectives into a single objective with a "trade-off" parameter - this approach is used pretty widely e.g. when balancing exploration and exploitation (though that's in the acquisition function - same principle here.) Your trade-off parameter could be o1,o2=your_func(X); y=trade_off(o1,o2,alpha)
where e.g. trade_off = lambda o1,o2,a: (a*o1)+((1-a)*o2)
for \alpha\in[0,1]
.
About the Emukit, does its Bayesian optimisation contain all the features of the GPyOpt Bayesian optimisation? Namely what I am looking for is:
@xseryda Answer to all three is yes, third one can be done via local penalization, which is implemented.
You might try collapsing the two objectives into a single objective with a "trade-off" parameter - this approach is used pretty widely e.g. when balancing exploration and exploitation (though that's in the acquisition function - same principle here.) Your trade-off parameter could be
o1,o2=your_func(X); y=trade_off(o1,o2,alpha)
where e.g.trade_off = lambda o1,o2,a: (a*o1)+((1-a)*o2)
for\alpha\in[0,1]
.
Excuse me,how to conduct Multi-objective optimisation in GPyOpt? Would you like to give an example?
Best!
Hello,
is there a possibility for multiobjective optimisation?
e.g.
If not, do you have any plans to implement the multiobjective optimisation?
Thanks.