Fix broken gym library link (#28111)

gymlibrary.ml becomes gymlibrary.dev

Signed-off-by: Jiajun Yao <jeromeyjj@gmail.com>
This commit is contained in:
Jiajun Yao 2022-08-25 19:52:43 -07:00 committed by GitHub
parent cf2cb66d29
commit 5139a5c722
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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.dev/environments/toy_text/taxi/>`_
for a few training iterations, then perform a single evaluation loop
(with rendering enabled):
@ -80,7 +80,7 @@ for a few training iterations, then perform a single evaluation loop
Feature Overview
----------------
You can read about:
You can read about:
- `RLlib Key Concepts <core-concepts.html>`_

View file

@ -5,7 +5,7 @@
Environments
============
RLlib works with several different types of environments, including `OpenAI Gym <https://www.gymlibrary.ml/>`__, user-defined, multi-agent, and also batched environments.
RLlib works with several different types of environments, including `OpenAI Gym <https://www.gymlibrary.dev/>`__, user-defined, multi-agent, and also batched environments.
.. tip::
@ -18,7 +18,7 @@ RLlib works with several different types of environments, including `OpenAI Gym
Configuring Environments
------------------------
You can pass either a string name or a Python class to specify an environment. By default, strings will be interpreted as a gym `environment name <https://www.gymlibrary.ml/>`__.
You can pass either a string name or a Python class to specify an environment. By default, strings will be interpreted as a gym `environment name <https://www.gymlibrary.dev/>`__.
Custom env classes passed directly to the algorithm must take a single ``env_config`` parameter in their constructor:
.. code-block:: python