Skip to content

Commit

Permalink
fix: config lower bounds as non-zero for pd1_tabular
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiebergman committed Feb 1, 2024
1 parent 012d391 commit 3138318
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mfpbench/taskset_tabular/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ def _get_raw_taskset_space(
[
UniformFloatHyperparameter(
"l1",
lower=0,
lower=1e-9,
upper=10,
log=True,
),
UniformFloatHyperparameter(
"l2",
lower=0,
lower=1e-9,
upper=10,
log=True,
),
Expand All @@ -79,7 +79,7 @@ def _get_raw_taskset_space(
[
UniformFloatHyperparameter(
"linear_decay",
lower=0,
lower=1e-8,
upper=0.0001,
log=True,
),
Expand Down

0 comments on commit 3138318

Please sign in to comment.