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 427bcdd commit c105ef2Copy full SHA for c105ef2
optimas/generators/base.py
@@ -216,8 +216,8 @@ def ask_trials(self, n_trials: int) -> List[Trial]:
216
analyzed_parameters=self._analyzed_parameters,
217
custom_parameters=self._custom_trial_parameters,
218
)
219
- if 'ax_trial_id' in point:
220
- trial.ax_trial_id = point['ax_trial_id']
+ if "ax_trial_id" in point:
+ trial.ax_trial_id = point["ax_trial_id"]
221
gen_trials.append(trial)
222
# Keep only trials that have been given data.
223
for trial in gen_trials:
0 commit comments