From b55f4a7f0423b55d156ec70d162764f979f4db27 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Mon, 30 Apr 2018 16:02:48 -0700 Subject: [PATCH] [rllib] Fix broken link in docs (#1967) * Update README.rst * Update rllib.rst --- doc/source/rllib.rst | 2 +- python/ray/rllib/README.rst | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/source/rllib.rst b/doc/source/rllib.rst index 9ff199eaf..3a5b1109c 100644 --- a/doc/source/rllib.rst +++ b/doc/source/rllib.rst @@ -17,7 +17,7 @@ RLlib's policy optimizers serve as the basis for RLlib's reference algorithms, w - Deep Deterministic Policy Gradients (`DDPG `__, `DDPG2 `__). -- Ape-X Distributed Prioritized Experience Replay, including both `DQN `__ and `DDPG `__ variants. +- Ape-X Distributed Prioritized Experience Replay, including both `DQN `__ and `DDPG `__ variants. - Evolution Strategies (`ES `__), as described in `this paper `__. diff --git a/python/ray/rllib/README.rst b/python/ray/rllib/README.rst index 8b2cdf44f..ea2befb04 100644 --- a/python/ray/rllib/README.rst +++ b/python/ray/rllib/README.rst @@ -15,9 +15,8 @@ RLlib includes the following reference algorithms: - Deep Deterministic Policy Gradients (`DDPG `__, `DDPG2 `__). -- Ape-X Distributed Prioritized Experience Replay, including both `DQN `__ and `DDPG `__ variants. +- Ape-X Distributed Prioritized Experience Replay, including both `DQN `__ and `DDPG `__ variants. -- Evolution Strategies (`ES `__), as described in `this - paper `__. +- Evolution Strategies (`ES `__), as described in `this paper `__. These algorithms can be run on any OpenAI Gym MDP, including custom ones written and registered by the user.