[RLlib] Update MADDPG example repo to maintained fork (#6831)

This commit is contained in:
Justin Terry 2020-01-18 16:08:27 -05:00 committed by Eric Liang
parent 9b1d2953de
commit 97bf79917c
2 changed files with 2 additions and 2 deletions

View file

@ -348,7 +348,7 @@ Tuned examples: `Two-step game <https://github.com/ray-project/ray/blob/master/r
Multi-Agent Deep Deterministic Policy Gradient (contrib/MADDPG)
---------------------------------------------------------------
`[paper] <https://arxiv.org/abs/1706.02275>`__ `[implementation] <https://github.com/ray-project/ray/blob/master/rllib/contrib/maddpg/maddpg.py>`__ MADDPG is a specialized multi-agent algorithm. Code here is adapted from https://github.com/openai/maddpg to integrate with RLlib multi-agent APIs. Please check `wsjeon/maddpg-rllib <https://github.com/wsjeon/maddpg-rllib>`__ for examples and more information.
`[paper] <https://arxiv.org/abs/1706.02275>`__ `[implementation] <https://github.com/ray-project/ray/blob/master/rllib/contrib/maddpg/maddpg.py>`__ MADDPG is a specialized multi-agent algorithm. Code here is adapted from https://github.com/openai/maddpg to integrate with RLlib multi-agent APIs. Please check `justinkterry/maddpg-rllib <https://github.com/justinkterry/maddpg-rllib>`__ for examples and more information.
**MADDPG-specific configs** (see also `common configs <rllib-training.html#common-parameters>`__):

View file

@ -1,4 +1,4 @@
# Implementation of MADDPG in RLLib
Please check [wsjeon/maddpg-rllib](https://github.com/wsjeon/maddpg-rllib) for more information.
Please check [justinkterry/maddpg-rllib](https://github.com/justinkterry/maddpg-rllib) for more information.