Cesar Cardoso
Cesar Cardoso
Hi folks! Apologies for the slow response from my part. Support for fixed features is being added now in https://github.com/facebook/Ax/pull/2372. Only difference being the use of `FixedFeatures` instead of `ObservationFeatures`,...
This should be resolved after https://github.com/facebook/Ax/pull/2318. Can you try 0.4.0 and see if the issue persists?
Hello there! The issue doesn't repro in version 0.4.0. Can you check that it's resolved for you after updating to 0.4.0?
Hello there! In this case you're getting an exception because [`botorch_model_class`](https://github.com/facebook/Ax/blob/main/ax/models/torch/botorch_modular/surrogate.py#L177) should be a class type rather than an instance. Your `train_default_gp_model()` method returns an instance of a `Model` (specifically...
Hello there! Unfortunately not. The current implementation of [`compute_posterior_pareto_frontier`](https://github.com/facebook/Ax/blob/main/ax/plot/pareto_utils.py#L341-L492) is explicitly written for two objective metrics.
Hello there! You can try the following: ```python from ax.analysis.plotly.arm_effects import ArmEffectsPlot client.compute_analyses([ArmEffectsPlot(show_cumulative_best=True)]) ``` The `show_cumulative_best` argument should draw a line through the best points seen so far for each...
Got it! We're currently modernizing our plotting stack and that's one we haven't gotten to yet. I'm planning to work on it sometime this week. Will reference this issue in...
Hey! Sorry I didn't get around to implement this back when you posted it. It's in our backlog and we have it staffed, so you can expect it to be...
Hello there! Could you also provide your implementation for `get_user_inputX` and `get_user_inputY`? I've replaced them with `input` and I'm able to iterate successfully without encountering the `Encountered exception in computing...
Thanks! Your `x`, `y` values would be floats here so that wouldn't be the issue. Can you double check that this issue is reproducing for you with the latest versions...