diff --git a/doc/source/tune.rst b/doc/source/tune.rst index 5c837f521..67ee0ea76 100644 --- a/doc/source/tune.rst +++ b/doc/source/tune.rst @@ -11,14 +11,11 @@ Tune is a Python library for experiment execution and hyperparameter tuning at a * Launch a multi-node :ref:`distributed hyperparameter sweep ` in less than 10 lines of code. * Supports any machine learning framework, :ref:`including PyTorch, XGBoost, MXNet, and Keras`. - * Natively `integrates with optimization libraries `_ such as `HyperOpt `_, `Bayesian Optimization `_, and `Facebook Ax `_. - * Choose among `scalable algorithms `_ such as `Population Based Training (PBT)`_, `Vizier's Median Stopping Rule`_, `HyperBand/ASHA`_. + * Natively :ref:`integrates with optimization libraries ` such as `HyperOpt `_, `Bayesian Optimization `_, and `Facebook Ax `_. + * Choose among :ref:`scalable algorithms ` such as :ref:`Population Based Training (PBT) `, :ref:`Vizier's Median Stopping Rule `, :ref:`HyperBand/ASHA `. * Visualize results with `TensorBoard `__. * Move your models from training to serving on the same infrastructure with `Ray Serve`_. -.. _`Population Based Training (PBT)`: tune-schedulers.html#population-based-training-pbt -.. _`Vizier's Median Stopping Rule`: tune-schedulers.html#median-stopping-rule -.. _`HyperBand/ASHA`: tune-schedulers.html#asynchronous-hyperband .. _`Ray Serve`: rayserve/overview.html **Want to get started?** Head over to the :ref:`60 second Tune tutorial `. diff --git a/doc/source/tune/api_docs/suggestion.rst b/doc/source/tune/api_docs/suggestion.rst index dd3853a2f..8c1232bc6 100644 --- a/doc/source/tune/api_docs/suggestion.rst +++ b/doc/source/tune/api_docs/suggestion.rst @@ -97,7 +97,7 @@ 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 `_. -Importantly, BOHB is intended to be paired with a specific scheduler class: `HyperBandForBOHB `__. +Importantly, BOHB is intended to be paired with a specific scheduler class: :ref:`HyperBandForBOHB `. This algorithm requires using the `ConfigSpace search space specification `_. In order to use this search algorithm, you will need to install ``HpBandSter`` and ``ConfigSpace``: