Skip to content

Commit

Permalink
Change batch range for FullyBayesianPosterior
Browse files Browse the repository at this point in the history
Differential Revision: D44599898

fbshipit-source-id: 39e39f44c6244632c8406a6b40e3abb9c5b7fb3b
  • Loading branch information
Balandat authored and facebook-github-bot committed Apr 4, 2023
1 parent 8f832d4 commit 1888ca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions botorch/posteriors/fully_bayesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,6 @@ def batch_range(self) -> Tuple[int, int]:
candidate produces same value regardless of its position on the t-batch.
"""
if self._is_mt:
return (0, -3)
else:
return (0, -2)
else:
return (0, -1)

0 comments on commit 1888ca5

Please sign in to comment.