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 e516585 commit 939aea0Copy full SHA for 939aea0
optimas/generators/ax/developer/multitask.py
@@ -267,14 +267,14 @@ def _check_inputs(
267
"The number of low-fidelity trials must be larger than or equal "
268
"to the number of high-fidelity trials"
269
)
270
-
+
271
def suggest(self, num_points: Optional[int]) -> List[dict]:
272
"""Request the next set of points to evaluate."""
273
points = []
274
- for _ in range(num_points):
+ for _ in range(num_points):
275
next_trial = self._get_next_trial_arm()
276
if next_trial is not None:
277
- arm, trial_type, trial_index = next_trial
+ arm, trial_type, trial_index = next_trial
278
point = {
279
var.name: arm.parameters.get(var.name)
280
for var in self._varying_parameters
0 commit comments