Skip to content

Commit

Permalink
Fix example (ConfigSpace API)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamc committed Jul 17, 2024
1 parent f0ea0b7 commit 0a08364
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/1_basics/6_priors.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ def configspace(self) -> ConfigurationSpace:
"learning_rate_init",
lower=1e-5,
upper=1.0,
mu=np.log(1e-3),
sigma=np.log(10),
mu=1e-3, # will be transformed to log space later
sigma=10, # will be transformed to log space later
log=True,
)

Expand Down

0 comments on commit 0a08364

Please sign in to comment.