2020-05-17 12:19:44 -07:00
.. _tune-search-alg:
2020-04-25 18:25:56 -07:00
2020-03-23 12:23:21 -07:00
Search Algorithms (tune.suggest)
================================
2020-05-17 12:19:44 -07:00
Tune's Search Algorithms are wrappers around open-source optimization libraries for efficient hyperparameter selection. Each library has a specific way of defining the search space - please refer to their documentation for more details.
You can utilize these search algorithms as follows:
.. code-block :: python
from ray.tune.suggest.hyperopt import HyperOptSearch
tune.run(my_function, search_alg=HyperOptSearch(...))
Summary
-------
.. list-table ::
:header-rows: 1
* - SearchAlgorithm
- Summary
- Website
- Code Example
* - :ref: `AxSearch <tune-ax>`
- Bayesian/Bandit Optimization
- [`Ax <https://ax.dev/> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/ax_example`
2020-05-17 12:19:44 -07:00
* - :ref: `DragonflySearch <Dragonfly>`
- Scalable Bayesian Optimization
- [`Dragonfly <https://dragonfly-opt.readthedocs.io/> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/dragonfly_example`
2020-05-17 12:19:44 -07:00
* - :ref: `SkoptSearch <skopt>`
- Bayesian Optimization
- [`Scikit-Optimize <https://scikit-optimize.github.io> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/skopt_example`
2020-05-17 12:19:44 -07:00
* - :ref: `HyperOptSearch <tune-hyperopt>`
- Tree-Parzen Estimators
- [`HyperOpt <http://hyperopt.github.io/hyperopt> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/hyperopt_example`
2020-05-17 12:19:44 -07:00
* - :ref: `BayesOptSearch <bayesopt>`
- Bayesian Optimization
- [`BayesianOptimization <https://github.com/fmfn/BayesianOptimization> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/bayesopt_example`
2020-05-17 12:19:44 -07:00
* - :ref: `TuneBOHB <suggest-TuneBOHB>`
- Bayesian Opt/HyperBand
- [`BOHB <https://github.com/automl/HpBandSter> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/bohb_example`
2020-05-17 12:19:44 -07:00
* - :ref: `NevergradSearch <nevergrad>`
- Gradient-free Optimization
- [`Nevergrad <https://github.com/facebookresearch/nevergrad> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/nevergrad_example`
2020-08-13 01:13:22 +02:00
* - :ref: `OptunaSearch <tune-optuna>`
- Optuna search algorithms
- [`Optuna <https://optuna.org/> `__ ]
- :doc: `/tune/examples/optuna_example`
2020-05-17 12:19:44 -07:00
* - :ref: `ZOOptSearch <zoopt>`
- Zeroth-order Optimization
- [`ZOOpt <https://github.com/polixir/ZOOpt> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/zoopt_example`
2020-05-17 12:19:44 -07:00
* - :ref: `SigOptSearch <sigopt>`
- Closed source
- [`SigOpt <https://sigopt.com/> `__ ]
2020-07-13 18:01:10 -07:00
- :doc: `/tune/examples/sigopt_example`
2020-05-17 12:19:44 -07:00
.. note :: Search algorithms will require a different search space declaration than the default Tune format - meaning that you will not be able to combine `` tune.grid_search `` with the below integrations.
.. note :: Unlike :ref: `Tune's Trial Schedulers <tune-schedulers>` , Tune SearchAlgorithms cannot affect or stop training processes. However, you can use them together to **early stop the evaluation of bad trials** .
**Want to use your own algorithm?** The interface is easy to implement. :ref: `Read instructions here <byo-algo>` .
Tune also provides helpful utilities to use with Search Algorithms:
* :ref: `repeater` : Support for running each *sampled hyperparameter* with multiple random seeds.
* :ref: `limiter` : Limits the amount of concurrent trials when running optimization.
2020-08-03 15:07:31 -07:00
Saving and Restoring
--------------------
Certain search algorithms have `` save/restore `` implemented,
allowing reuse of learnings across multiple tuning runs.
.. code-block :: python
search_alg = HyperOptSearch()
experiment_1 = tune.run(
trainable,
search_alg=search_alg)
search_alg.save("./my-checkpoint.pkl")
# Restore the saved state onto another search algorithm
search_alg2 = HyperOptSearch()
search_alg2.restore("./my-checkpoint.pkl")
experiment_2 = tune.run(
trainable,
search_alg=search_alg2)
Further, Tune automatically saves its state inside the current experiment folder ("Result Dir") during tuning.
Note that if you have two Tune runs with the same experiment folder,
the previous state checkpoint will be overwritten. You can
avoid this by making sure `` tune.run(name=...) `` is set to a unique
identifier.
.. code-block :: python
search_alg = HyperOptSearch()
experiment_1 = tune.run(
cost,
num_samples=5,
search_alg=search_alg,
verbose=0,
name="my-experiment-1",
local_dir="~/my_results")
search_alg2 = HyperOptSearch()
search_alg2.restore_from_dir(
os.path.join("~/my_results", "my-experiment-1"))
.. note :: This is currently not implemented for: AxSearch, TuneBOHB, SigOptSearch, and DragonflySearch.
2020-05-17 12:19:44 -07:00
.. _tune-ax:
Ax (tune.suggest.ax.AxSearch)
-----------------------------
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. autoclass :: ray.tune.suggest.ax.AxSearch
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _bayesopt:
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
Bayesian Optimization (tune.suggest.bayesopt.BayesOptSearch)
------------------------------------------------------------
2020-04-27 08:51:13 -07:00
2020-05-17 12:19:44 -07:00
.. autoclass :: ray.tune.suggest.bayesopt.BayesOptSearch
2020-08-03 15:07:31 -07:00
:members: save, restore
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _`BayesianOptimization search space specification`: https://github.com/fmfn/BayesianOptimization/blob/master/examples/advanced-tour.ipynb
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _suggest-TuneBOHB:
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
BOHB (tune.suggest.bohb.TuneBOHB)
---------------------------------
BOHB (Bayesian Optimization HyperBand) is an algorithm that both terminates bad trials and also uses Bayesian Optimization to improve the hyperparameter search. It is backed by the `HpBandSter library <https://github.com/automl/HpBandSter> `_ .
2020-05-18 10:08:29 -07:00
Importantly, BOHB is intended to be paired with a specific scheduler class: :ref: `HyperBandForBOHB <tune-scheduler-bohb>` .
2020-05-17 12:19:44 -07:00
This algorithm requires using the `ConfigSpace search space specification <https://automl.github.io/HpBandSter/build/html/quickstart.html#searchspace> `_ . In order to use this search algorithm, you will need to install `` HpBandSter `` and `` ConfigSpace `` :
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. code-block :: bash
$ pip install hpbandster ConfigSpace
See the `BOHB paper <https://arxiv.org/abs/1807.01774> `_ for more details.
2020-03-23 12:23:21 -07:00
.. autoclass :: ray.tune.suggest.bohb.TuneBOHB
2020-05-17 12:19:44 -07:00
.. _Dragonfly:
Dragonfly (tune.suggest.dragonfly.DragonflySearch)
--------------------------------------------------
2020-03-23 12:23:21 -07:00
.. autoclass :: ray.tune.suggest.dragonfly.DragonflySearch
2020-08-03 15:07:31 -07:00
:members: save, restore
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _tune-hyperopt:
HyperOpt (tune.suggest.hyperopt.HyperOptSearch)
-----------------------------------------------
2020-03-23 12:23:21 -07:00
.. autoclass :: ray.tune.suggest.hyperopt.HyperOptSearch
2020-08-03 15:07:31 -07:00
:members: save, restore
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _nevergrad:
Nevergrad (tune.suggest.nevergrad.NevergradSearch)
--------------------------------------------------
2020-03-23 12:23:21 -07:00
.. autoclass :: ray.tune.suggest.nevergrad.NevergradSearch
2020-08-03 15:07:31 -07:00
:members: save, restore
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _`Nevergrad README's Optimization section`: https://github.com/facebookresearch/nevergrad/blob/master/docs/optimization.rst#choosing-an-optimizer
2020-08-13 01:13:22 +02:00
.. _tune-optuna:
Optuna (tune.suggest.optuna.OptunaSearch)
--------------------------------------------------
.. autoclass :: ray.tune.suggest.optuna.OptunaSearch
.. _`Optuna samplers`: https://optuna.readthedocs.io/en/stable/reference/samplers.html
2020-05-17 12:19:44 -07:00
.. _sigopt:
SigOpt (tune.suggest.sigopt.SigOptSearch)
-----------------------------------------
You will need to use the `SigOpt experiment and space specification <https://app.sigopt.com/docs/overview/create> `__ to specify your search space.
2020-03-23 12:23:21 -07:00
.. autoclass :: ray.tune.suggest.sigopt.SigOptSearch
2020-05-17 12:19:44 -07:00
.. _skopt:
Scikit-Optimize (tune.suggest.skopt.SkOptSearch)
------------------------------------------------
2020-03-23 12:23:21 -07:00
.. autoclass :: ray.tune.suggest.skopt.SkOptSearch
2020-08-03 15:07:31 -07:00
:members: save, restore
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
.. _`skopt Optimizer object`: https://scikit-optimize.github.io/#skopt.Optimizer
.. _zoopt:
ZOOpt (tune.suggest.zoopt.ZOOptSearch)
--------------------------------------
2020-04-16 09:24:30 -07:00
.. autoclass :: ray.tune.suggest.zoopt.ZOOptSearch
2020-08-03 15:07:31 -07:00
:members: save, restore
2020-04-16 09:24:30 -07:00
2020-05-17 12:19:44 -07:00
.. _repeater:
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
Repeated Evaluations (tune.suggest.Repeater)
--------------------------------------------
Use `` ray.tune.suggest.Repeater `` to average over multiple evaluations of the same
hyperparameter configurations. This is useful in cases where the evaluated
training procedure has high variance (i.e., in reinforcement learning).
By default, `` Repeater `` will take in a `` repeat `` parameter and a `` search_alg `` .
The `` search_alg `` will suggest new configurations to try, and the `` Repeater ``
will run `` repeat `` trials of the configuration. It will then average the
`` search_alg.metric `` from the final results of each repeated trial.
.. warning :: It is recommended to not use `` Repeater `` with a TrialScheduler.
Early termination can negatively affect the average reported metric.
.. autoclass :: ray.tune.suggest.Repeater
.. _limiter:
ConcurrencyLimiter (tune.suggest.ConcurrencyLimiter)
----------------------------------------------------
Use `` ray.tune.suggest.ConcurrencyLimiter `` to limit the amount of concurrency when using a search algorithm. This is useful when a given optimization algorithm does not parallelize very well (like a naive Bayesian Optimization).
.. autoclass :: ray.tune.suggest.ConcurrencyLimiter
.. _byo-algo:
2020-08-03 15:07:31 -07:00
Custom Search Algorithms (tune.suggest.Searcher)
------------------------------------------------
2020-03-23 12:23:21 -07:00
2020-05-17 12:19:44 -07:00
If you are interested in implementing or contributing a new Search Algorithm, provide the following interface:
2020-03-23 12:23:21 -07:00
2020-04-27 08:51:13 -07:00
.. autoclass :: ray.tune.suggest.Searcher
2020-03-23 12:23:21 -07:00
:members:
:private-members:
:show-inheritance: