Skip to content

Commit

Permalink
Merge pull request #3 from LarsHH/bug-fixes
Browse files Browse the repository at this point in the history
fixed hp ranges for logged params
  • Loading branch information
LarsHH committed Oct 21, 2018
2 parents df5ba55 + 2987219 commit f21786b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/parallel-examples/mnistmlp/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ def run_example(FLAGS):
"""
Run parallel Sherpa optimization over a set of discrete hp combinations.
"""
parameters = [sherpa.Continuous('lrinit', [0.1, 0.001], 'log'),
parameters = [sherpa.Continuous('lrinit', [0.001, 0.1], 'log'),
sherpa.Continuous('momentum', [0., 0.99]),
sherpa.Continuous('lrdecay', [1e-2, 1e-7], 'log'),
sherpa.Continuous('lrdecay', [1e-7, 1e-2], 'log'),
sherpa.Continuous('dropout', [0., 0.5])]

if FLAGS.algorithm == 'BayesianOptimization':
Expand Down

0 comments on commit f21786b

Please sign in to comment.