Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
Deathn0t committed Mar 29, 2024
1 parent 6262e63 commit e3bdd21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deephyper/search/hps/_mpi_dbo.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ def __init__(
if acq_func[0] == "q":
kappa = scipy.stats.expon.rvs(
size=self.size, scale=kappa, random_state=random_state
)[self._evaluator.rank]
)[self.rank]
xi = scipy.stats.expon.rvs(
size=self.size, scale=xi, random_state=random_state
)[self._evaluator.rank]
)[self.rank]
acq_func = acq_func[1:]
elif acq_func[0] == "b":
acq_func[0] = acq_func[1:]
Expand Down

0 comments on commit e3bdd21

Please sign in to comment.