Constructing the sample_pareto_frontiers for the qMultiObjectiveMaxValueEntropy acquisition function
              
              #2405
            
            
          -
| 
         In the  I am thinking of something like this: But it doesn't look right as the output should be   | 
  
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
| 
         Hi, I think the following should work, but let me know if you run into issues with it: from botorch.acquisition.multi_objective.utils import sample_optimal_points
def sample_pareto_frontier(model):
    pareto_sets, pareto_frontiers = sample_optimal_points(
        model, bounds=bounds, num_samples=num_samples, num_points=num_points
    )
    return pareto_frontsYou would need to define   | 
  
Beta Was this translation helpful? Give feedback.
Hi, I think the following should work, but let me know if you run into issues with it:
You would need to define
bounds,num_samples, andnum_points.