Skip to content

Commit

Permalink
Merge pull request #143 from kiudee/142_warp_inputs
Browse files Browse the repository at this point in the history
Add warp_inputs as option for the tuning server
  • Loading branch information
kiudee committed Jun 29, 2021
2 parents e189f90 + d2ac850 commit f45972a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ History
optimizer object.
* Tuning server now also uses the updated pentanomial model including
noise estimation.
* ``warp_inputs`` can now be passed via database to the tuning server.
* Fix the match parser producing incorrect results, when concurrency > 1 is
used for playing matches.
* Fix the server for distributed tuning trying to compute the current optimum
Expand Down
4 changes: 3 additions & 1 deletion tune/db_workers/tuning_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ def setup_tuner(self):
"n_initial_points", 5 * len(self.dimensions)
),
gp_kernel=self.kernel,
gp_kwargs=dict(normalize_y=True),
gp_kwargs=dict(
normalize_y=True, warp_inputs=self.tunecfg.get("warp_inputs", True)
),
gp_priors=self.priors,
acq_func=self.tunecfg.get("acq_func", "ts"),
acq_func_kwargs=self.tunecfg.get(
Expand Down

0 comments on commit f45972a

Please sign in to comment.