Open RafieeAshkan opened 2 years ago
Hi @RafieeAshkan,
Thank you for your interest in MORBO and BoTorch!
@dme65 I look forward to when you added tutorials on MORBO and SCBO. Thank you guys again for such a great and useful package.
@dme65 thanks for your earlier comment. I went through the SCBO paper and managed to implement the algorithm, which is really powerful. I am now taking a shot at MORBO, and was wondering in TuRBO for the trust region boundaries part we do:
tr_lb = torch.clamp(x_center - weights * state.length / 2.0, 0.0, 1.0)
tr_ub = torch.clamp(x_center + weights * state.length / 2.0, 0.0, 1.0)
with weights calculated from GP model length scale for the objective
weights = model.covar_module.base_kernel.lengthscale.squeeze().detach()
In the case of multi-objectives, are the weights calculated for each objectives and then perhaps get the smallest length value? Any comment would be really helpful.
Hi @dme65, I am also very excited about the release of the MORBO tutorial. Do you have any ideas on when this can come out?
Thanks!
@RafieeAshkan: @nataliemaus recently contributed an SCBO tutorial that you can check out here: https://botorch.org/tutorials/scalable_constrained_bo
@gugeyao: We are working on moving MORBO into BoTorch and will eventually add a tutorial. For now, the code for MORBO is available here: https://github.com/facebookresearch/morbo
Hi, first of all many thanks for such a great and useful library. I am using Botorch for engineering design optimisation combined with CFD simulations and absolutely loving it. I had two requests which I believe can be very useful to the community: