[docs] Add backlinks from hyperopt / rl algorithm examples to the built-on Ray libraries (#1356)

This commit is contained in:
Eric Liang
2017-12-23 00:31:33 -08:00
committed by Richard Liaw
parent 43e78217f8
commit 715737cc06
4 changed files with 15 additions and 0 deletions
+1
View File
@@ -18,6 +18,7 @@
/src/common/format/*_generated.h
/src/plasma/format/*_generated.h
/src/local_scheduler/format/*_generated.h
/src/ray/gcs/format/*_generated.h
# Redis temporary files
*dump.rdb
+4
View File
@@ -11,6 +11,10 @@ View the `code for this example`_.
.. _`Universe Starter Agent`: https://github.com/openai/universe-starter-agent
.. _`code for this example`: https://github.com/ray-project/ray/tree/master/python/ray/rllib/a3c
.. note::
For an overview of Ray's reinforcement learning library, see `Ray RLlib <http://ray.readthedocs.io/en/latest/rllib.html>`__.
To run the application, first install **ray** and then some dependencies:
.. code-block:: bash
+5
View File
@@ -2,6 +2,11 @@ Hyperparameter Optimization
===========================
This document provides a walkthrough of the hyperparameter optimization example.
.. note::
To learn about Ray's built-in hyperparameter optimization framework, see `Ray.tune <http://ray.readthedocs.io/en/latest/tune.html>`__.
To run the application, first install some dependencies.
.. code-block:: bash
+5
View File
@@ -4,6 +4,11 @@ Policy Gradient Methods
This code shows how to do reinforcement learning with policy gradient methods.
View the `code for this example`_.
.. note::
For an overview of Ray's reinforcement learning library, see `Ray RLlib <http://ray.readthedocs.io/en/latest/rllib.html>`__.
To run this example, you will need to install `TensorFlow with GPU support`_ (at
least version ``1.0.0``) and a few other dependencies.