[rllib] remove redundant docs (#1728)

* wip

* more work

* fix apex

* docs

* apex doc

* pool comment

* clean up

* make wrap stack pluggable

* Mon Mar 12 21:45:50 PDT 2018

* clean up comment

* table

* Mon Mar 12 22:51:57 PDT 2018

* Mon Mar 12 22:53:05 PDT 2018

* Mon Mar 12 22:55:03 PDT 2018

* Mon Mar 12 22:56:18 PDT 2018

* Mon Mar 12 22:59:54 PDT 2018

* Update apex_optimizer.py

* Update index.rst

* Update README.rst

* Update README.rst

* comments

* Wed Mar 14 19:01:02 PDT 2018

* Fri Mar 16 15:44:27 PDT 2018
This commit is contained in:
Eric Liang
2018-03-17 14:45:04 -07:00
committed by GitHub
parent 9b361115c3
commit e3685fca5e
3 changed files with 8 additions and 47 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
Policy Optimizers
=================
RLlib supports using its distributed policy optimizer implementations from external algorithms.
RLlib supports using its policy optimizer implementations from external algorithms.
Example of constructing and using a policy optimizer `(link to full example) <https://github.com/ericl/baselines/blob/rllib-example/baselines/deepq/run_simple_loop.py>`__:
+5 -6
View File
@@ -1,15 +1,10 @@
Ray RLlib: Scalable Reinforcement Learning
==========================================
Ray RLlib is an RL execution toolkit built on the Ray distributed execution framework. RLlib implements a collection of distributed *policy optimizers* that make it easy to use a variety of training strategies with existing RL algorithms written in frameworks such as PyTorch, TensorFlow, and Theano. This enables complex architectures for RL training (e.g., Ape-X, IMPALA), to be implemented once and reused many times across different RL algorithms and libraries.
Ray RLlib is an RL execution toolkit built on the Ray distributed execution framework. RLlib implements a collection of distributed *policy optimizers* that make it easy to use a variety of training strategies with existing RL algorithms written in frameworks such as PyTorch, TensorFlow, and Theano.
You can find the code for RLlib `here on GitHub <https://github.com/ray-project/ray/tree/master/python/ray/rllib>`__, and the paper `here <https://arxiv.org/abs/1712.09381>`__.
.. note::
To use RLlib's policy optimizers outside of RLlib, see the `RLlib policy optimizers documentation <policy-optimizers.html>`__.
RLlib's policy optimizers serve as the basis for RLlib's reference algorithms, which include:
- `Proximal Policy Optimization (PPO) <https://arxiv.org/abs/1707.06347>`__ which
@@ -29,6 +24,10 @@ RLlib's policy optimizers serve as the basis for RLlib's reference algorithms, w
These algorithms can be run on any `OpenAI Gym MDP <https://github.com/openai/gym>`__,
including custom ones written and registered by the user.
.. note::
To use RLlib's policy optimizers outside of RLlib, see the `policy optimizers documentation <policy-optimizers.html>`__.
Installation
------------