-
Notifications
You must be signed in to change notification settings - Fork 321
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
Request for documentation: example with DeterministicModel
#1192
Comments
How long does it take to evaluate |
f is a black box but not very complex as we know some of the structure (like monotocity) but take a long time to evaluate (several hours for each eval) |
@bletham has worked on monotonic GP models in the past, seems like this would be useful here. Also, depending on how much you know about the structure of the function, it could be beneficial to define a custom covariance function. How many outcome constraints are there? |
Thanks for your answer. 10 constraints. |
@Balandat to answer to one of your first question, let's say we have an anaytical form (x²+y²) for example to minimize. But we don't know the analytical forms of the outcome constraints. How can we exploit this knowledge ? |
Sorry for the much delayed reply. We have the notion of a Then you can stick this plus the models for the outcome constraints into a Just to be clear though, when you evaluate a configuration, you do observe a value for each of the constrained outcomes (and then have a bound to check if each of those is feasible or not), right? |
Ok, I will try that. Do you have any example using Deterministicmodel ? yes ( for your question). |
We don't currently have such examples, unfortunately, but we plan on open-sourcing code for a method that will provide a really strong example for using deterministic models sometime in 2023. Until then, the tutorial on using a custom model might be the most helpful, especially in conjunction with @Balandat's comment on how to construct the model as a ModelList (thank you @esantorella for the suggestion!). Assigning this to @qingfeng10 who will be open-sourcing the method-in-question, so she can link the example here at that time. |
DeterministicModel
Xref #935 |
Since it will unfortunately likely be a bit before we provide this, putting this on wishlist for now. |
Hi,
I'm trying to find the best strategy to a particular optimization problem. I have a scalar objective function to minimize f(x,y). x and y are both range parameters. The function is completely monotonous with a single global minimum so the solution is pretty obvious. But I have several outcome constraints. Do you have some recommended strategy for that ?
Thanks
The text was updated successfully, but these errors were encountered: