Skip to content

Commit

Permalink
Remove leftover print-statement
Browse files Browse the repository at this point in the history
Reviewed By: danielcohenlive

Differential Revision: D33000545

fbshipit-source-id: 45020cccf1f3f602c0b5bb45d9d35ee47f994f0b
  • Loading branch information
lena-kashtelyan authored and facebook-github-bot committed Dec 10, 2021
1 parent 4d7e716 commit 65dc494
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ax/modelbridge/generation_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,6 @@ def _num_trials_to_gen_and_complete_in_curr_step(self) -> Tuple[int, int]:
# and more than `min_trials_observed` can be completed (if `min_trials_observed
# < `num_trials`), so `left_to_gen` and `left_to_complete` should be clamped
# to lower bound of 0.
print("here", self._curr.num_trials, self.num_can_complete_this_step)
left_to_gen = max(self._curr.num_trials - self.num_can_complete_this_step, 0)
left_to_complete = max(
self._curr.min_trials_observed - self.num_completed_this_step, 0
Expand Down

0 comments on commit 65dc494

Please sign in to comment.