Skip to content

Commit

Permalink
[rllib] Fix some missing agent->algorithm doc changes (ray-project#24841
Browse files Browse the repository at this point in the history
)

ray-project#24797 missed some doc changes that popped up in broken linkcheck. Note that there could be others that were not caught by this.
  • Loading branch information
krfricke authored May 16, 2022
1 parent 6f14b6a commit 96da5dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/source/rllib/feature_overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@
non-RL/ML) system? This branch of reinforcement learning is for you!
RLlib's comes with several `offline RL <https://github.com/ray-project/ray/blob/master/rllib/examples/offline_rl.py>`_
algorithms (*CQL*, *MARWIL*, and *DQfD*), allowing you to either purely
`behavior-clone <https://github.com/ray-project/ray/blob/master/rllib/agents/marwil/tests/test_bc.py>`_
`behavior-clone <https://github.com/ray-project/ray/blob/master/rllib/algorithms/marwil/tests/test_bc.py>`_
your existing system or learn how to further improve over it.
2 changes: 1 addition & 1 deletion doc/source/rllib/rllib-algorithms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ Hopper 620 ~650
Dreamer
-------
|pytorch|
`[paper] <https://arxiv.org/abs/1912.01603>`__ `[implementation] <https://github.com/ray-project/ray/blob/master/rllib/agents/dreamer/dreamer.py>`__
`[paper] <https://arxiv.org/abs/1912.01603>`__ `[implementation] <https://github.com/ray-project/ray/blob/master/rllib/algorithms/dreamer/dreamer.py>`__

Dreamer is an image-only model-based RL method that learns by imagining trajectories in the future and is evaluated on the DeepMind Control Suite `environments <https://github.com/ray-project/ray/blob/master/rllib/examples/env/dm_control_suite.py>`__. RLlib's Dreamer is adapted from the `official Google research repo <https://github.com/google-research/dreamer>`__.

Expand Down
2 changes: 1 addition & 1 deletion rllib/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ for your particular problem, but tons of historic data recorded by a legacy (may
non-RL/ML) system? This branch of reinforcement learning is for you!
RLlib's comes with several `offline RL <https://github.com/ray-project/ray/blob/master/rllib/examples/offline_rl.py>`_
algorithms (*CQL*, *MARWIL*, and *DQfD*), allowing you to either purely
`behavior-clone <https://github.com/ray-project/ray/blob/master/rllib/agents/marwil/tests/test_bc.py>`_
`behavior-clone <https://github.com/ray-project/ray/blob/master/rllib/algorithms/marwil/tests/test_bc.py>`_
your existing system or learn how to further improve over it.


Expand Down
2 changes: 1 addition & 1 deletion rllib/algorithms/dreamer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Dreamer.

**[Detailed Documentation](https://docs.ray.io/en/latest/rllib/rllib-algorithms.html#dreamer)**

**[Implementation](https://github.com/ray-project/ray/blob/master/rllib/agents/dreamer/dreamer.py)**
**[Implementation](https://github.com/ray-project/ray/blob/master/rllib/algorithms/dreamer/dreamer.py)**

0 comments on commit 96da5dc

Please sign in to comment.