Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Christy docs2 #26265

Merged
merged 18 commits into from
Jul 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/rllib/core-concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ An environment in RL is the agent's world, it is a simulation of the problem to
An RLlib environment consists of:

1. all possible actions (**action space**)
2. a complete omniscient description of the environment, nothing hidden (**state space**)
2. a complete description of the environment, nothing hidden (**state space**)
3. an observation by the agent of certain parts of the state (**observation space**)
4. **reward**, which is the only feedback the agent receives per action.

Expand Down
2 changes: 1 addition & 1 deletion doc/source/rllib/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To be able to run our Atari examples, you should also install:

After these quick pip installs, you can start coding against RLlib.

Here is an example of running a PPO Trainer on the "`Taxi domain <https://www.gymlibrary.ml/environments/toy_text/taxi/>`_"
Here is an example of running a PPO Trainer on the `Taxi domain <https://www.gymlibrary.ml/environments/toy_text/taxi/>`_
for a few training iterations, then perform a single evaluation loop
(with rendering enabled):

Expand Down
2 changes: 2 additions & 0 deletions doc/source/rllib/rllib-env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ RLlib works with several different types of environments, including `OpenAI Gym

.. image:: images/rllib-envs.svg

.. _configuring-environments:

Configuring Environments
------------------------

Expand Down