Cesar Cardoso
Cesar Cardoso
Thank you for the logs! The warning is being logged here https://github.com/facebook/Ax/blob/main/ax/modelbridge/cross_validation.py#L433-L469. The `get_fit_and_std_quality_and_generalization_dict()` method is used for analytics purposes only, so an exception in there shouldn't affect any of...
The simplest way is probably to just add a `print(Xs)` ``` if outcome not in Xs: print(Xs) raise ValueError(f"Outcome `{outcome}` was not observed.") ``` in https://github.com/facebook/Ax/blob/main/ax/modelbridge/torch.py#L348-L349 and see what you...
Hello there! I ran your provided code, but the issue doesn't reproduce for me (on Ax 1.2.1). I am able to get a trial (or even multiple) without issue. I...
[GENERAL SUPPORT]: Duplicate parametrizations (different objective values) give NaN errors (V 0.5.0)
Hello there! Running your provided code with Ax's latest version (1.2.1) doesn't reproduce the issue. Can you try upgrading Ax?
Hello there! If I understand correctly your setup is as follows: 1. You have a search space of 10 parameters [p1, p2, ..., p10] 2. You can only update 2...