We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e747542 commit 01f712bCopy full SHA for 01f712b
optimas/generators/ax/service/base.py
@@ -159,9 +159,7 @@ def suggest(self, num_points: Optional[int]) -> List[dict]:
159
160
def _ignore_out_of_bounds(self, trial: Trial) -> None:
161
"""Check if trial parameters are within their bounds."""
162
- for var, value in zip(
163
- trial.varying_parameters, trial.parameter_values
164
- ):
+ for var, value in zip(trial.varying_parameters, trial.parameter_values):
165
if value < var.lower_bound or value > var.upper_bound:
166
if not self._fit_out_of_design:
167
ignore_reason = (
0 commit comments