Skip to content

Commit

Permalink
fix: config lower bounds fix for pd1_tabular
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Feb 1, 2024
1 parent 3138318 commit c15be00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mfpbench/pd1_tabular/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _get_raw_pd1_space(
),
UniformFloatHyperparameter(
"lr_initial",
lower=1.0e-4,
lower=1.0e-5,
upper=10,
log=True,
),
Expand All @@ -46,7 +46,7 @@ def _get_raw_pd1_space(
),
UniformFloatHyperparameter(
"opt_momentum",
lower=1.0e-4,
lower=1.0e-5,
upper=1.0,
log=True,
),
Expand Down

0 comments on commit c15be00

Please sign in to comment.