Move test folders under rllib/tune from test -> tests. (#4214)

This commit is contained in:
Robert Nishihara
2019-03-02 13:37:16 -08:00
committed by Philipp Moritz
parent 6f46edca51
commit 4b89eebfc7
37 changed files with 102 additions and 101 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ Custom Envs and Models
Example of defining and registering a gym env for use with RLlib.
- `Registering a custom model with supervised loss <https://github.com/ray-project/ray/blob/master/python/ray/rllib/examples/custom_loss.py>`__:
Example of defining and registering a custom model with a supervised loss.
- `Subprocess environment <https://github.com/ray-project/ray/blob/master/python/ray/rllib/test/test_env_with_subprocess.py>`__:
- `Subprocess environment <https://github.com/ray-project/ray/blob/master/python/ray/rllib/tests/test_env_with_subprocess.py>`__:
Example of how to ensure subprocesses spawned by envs are killed when RLlib exits.
- `Batch normalization <https://github.com/ray-project/ray/blob/master/python/ray/rllib/examples/batch_norm_model.py>`__:
Example of adding batch norm layers to a custom model.